/* ================================================================
   iHub Anubhuti — IIITD Foundation
   style.css | Complete Stylesheet
   Designed by: Expert UI/UX & Front-End System
   ================================================================ */

/* ----------------------------------------------------------------
   0. GLOBAL RESET & CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* -- Core Palette -- */
  --navy:        #0E2849;   /* Richer, deeper navy blue */
  --navy-deep:   #08182B;   /* Deeper midnight navy for extreme contrast */
  --navy-mid:    #133868;   /* Saturated medium navy */
  --navy-light:  #1C5296;   /* Bright sapphire accent blue */
  --gold:        #FFC400;   /* Brighter, more vibrant gold */
  --gold-dark:   #D6A400;   /* Richer dark gold */
  --gold-light:  #FFE066;   /* Brighter light gold */
  --white:       #FFFFFF;
  --off-white:   #EDF1F7;   /* Clean light blue-grey that makes white cards pop */
  --grey-100:    #EEF0F3;
  --grey-200:    #D8DBE2;
  --grey-400:    #9199A9;
  --grey-600:    #5A6070;
  --grey-800:    #2E3445;
  --text-body:   #2E3445;
  --text-light:  #5A6070;

  /* -- Typography -- */
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Lora', Georgia, serif;

  /* -- Type Scale -- */
  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    0.875rem;  /* 14px */
  --text-base:  1rem;      /* 16px */
  --text-md:    1.125rem;  /* 18px */
  --text-lg:    1.25rem;   /* 20px */
  --text-xl:    1.5rem;    /* 24px */
  --text-2xl:   2rem;      /* 32px */
  --text-3xl:   2.5rem;    /* 40px */
  --text-4xl:   3.25rem;   /* 52px */
  --text-5xl:   4rem;      /* 64px */

  /* -- Spacing -- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* -- Layout -- */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);

  /* -- Borders & Shadows -- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 3px rgba(11,37,69,.08), 0 1px 2px rgba(11,37,69,.04);
  --shadow-md:  0 4px 16px rgba(11,37,69,.10), 0 2px 6px rgba(11,37,69,.06);
  --shadow-lg:  0 12px 40px rgba(11,37,69,.14), 0 4px 14px rgba(11,37,69,.08);
  --shadow-xl:  0 24px 60px rgba(11,37,69,.18);

  /* -- Transitions -- */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 150ms var(--ease);
  --trans-base: 260ms var(--ease);
  --trans-slow: 400ms var(--ease);
}

/* ----------------------------------------------------------------
   1. BASE STYLES
   ---------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  max-width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul { list-style: none; }

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------------
   2. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ----------------------------------------------------------------
   3. BUTTON SYSTEM
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--trans-base), color var(--trans-base),
              border-color var(--trans-base), box-shadow var(--trans-base),
              transform var(--trans-fast);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — Gold fill */
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.45);
  transform: translateY(-2px);
}

/* Outline — White border on dark */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* CTA — compact, for navbar */
.btn-cta {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  font-size: var(--text-xs);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.45);
  transform: translateY(-2px);
}

/* Ghost — transparent on light bg */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Modifiers */
.btn--sm { padding: 0.55rem 1.1rem; font-size: var(--text-xs); }
.btn--full { width: 100%; }

/* ----------------------------------------------------------------
   4. SECTION COMMON STYLES
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: var(--space-4);
}
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-5);
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-4) auto 0;
}
.section-title--white { color: var(--white); }
.section-title--white::after { background: var(--gold); }

.section-desc {
  font-size: var(--text-md);
  color: var(--text-light);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   5. HEADER & NAVIGATION  —  Premium Multi-level Dropdown System
   ---------------------------------------------------------------- */

.site-header {
  position: fixed; /* Fixed always to sit on top of the hero and avoid flow jumps */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-block: var(--space-4) 0;
  transition: padding 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled {
  padding-block: 0;
}

/* Scroll shadow & background transition */
.navbar {
  background: transparent;
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .navbar {
  background: var(--navy);
  box-shadow: 0 6px 32px rgba(7, 26, 54, 0.45);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
  position: relative;
  max-width: var(--container-max);
}

/* ── Brand / Logo ── */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: var(--space-8);
  gap: var(--space-2);
  align-self: stretch;
}

.brand a:nth-child(2) {
  display: flex;
  align-items: center;
  align-self: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 15px;
  margin-left: 15px;
}

.brand a {
  display: block;
  text-decoration: none;
}

.brand-img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-img:not(.nmicps-navbar-logo) {
  /* Convert dark/black logo to white for dark navbar */
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.3));
}

/* ── Floating Menu Capsule (Desktop) ── */
.nav-right-group {
  display: flex;
  align-items: center;
  background: rgba(13, 32, 61, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  padding: 4px 6px 4px 16px;
  height: 52px;
  margin-left: auto;
  transition: 
    background 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
    padding 300ms cubic-bezier(0.4, 0, 0.2, 1),
    height 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .nav-right-group {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
  height: 84px;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Hidden inputs (drawer + per-dropdown) ── */
.nav-drawer-input,
.dd-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(14, 40, 73, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--trans-fast), background var(--trans-fast), transform var(--trans-fast);
  flex-shrink: 0;
  order: 10; /* push to far right */
}
.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(28, 82, 150, 0.4);
  transform: scale(1.04);
}
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X when drawer open */
.nav-drawer-input:checked + .nav-toggle {
  background: rgba(28, 82, 150, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.nav-drawer-input:checked + .nav-toggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-drawer-input:checked + .nav-toggle .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-drawer-input:checked + .nav-toggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   NAV MENU — Desktop layout
═══════════════════════════════════════════════ */
.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 100%;
  margin-left: auto;
  gap: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Nav link & dropdown label (shared base) ── */
.nav-link,
.dd-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-link:hover,
.dd-label:hover { color: var(--gold); }

/* Scale link text slightly on hover/active state */
.nav-item:hover > .nav-link,
.nav-item:hover > .dd-label,
.nav-item > .nav-link.is-active,
.nav-item > .dd-label.is-active,
.nav-item > .dd-input:checked + .dd-label {
  transform: scale(1.04);
}

/* Active and checked state */
.nav-link.is-active,
.dd-label.is-active,
.nav-item > .dd-input:checked + .dd-label {
  color: var(--gold);
}

/* Elegant gold underline directly below text */
.nav-item > .nav-link::after,
.nav-item > .dd-label::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item > .nav-link:hover::after,
.nav-item > .dd-label:hover::after,
.nav-item > .nav-link.is-active::after,
.nav-item > .dd-input:checked + .dd-label::after { width: 80%; }

/* Caret icon */
.nav-caret {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 250ms cubic-bezier(0.4,0,0.2,1);
  margin-left: 1px;
}

/* ═══════════════════════════════════════════════
   DROPDOWN PANEL
═══════════════════════════════════════════════ */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  transform: translateY(-10px);
  min-width: 250px;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow:
    0 4px 6px -1px rgba(11,37,69,.08),
    0 12px 40px -4px rgba(11,37,69,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 500;
  padding: 8px 0 10px;
  list-style: none;
}

/* Tip arrow */
.dropdown::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--gold);
  pointer-events: none;
}

/* Show on desktop hover / focus-within */
@media (hover: hover) and (min-width: 1151px) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .has-dropdown:hover .nav-caret,
  .has-dropdown:focus-within .nav-caret {
    transform: rotate(180deg);
  }
  .dropdown:not(.mega-menu) {
    width: 300px !important;
    left: 0;
    right: auto;
  }
  .dropdown:not(.mega-menu)::before {
    left: 32px;
    transform: none;
  }
}

/* ── Dropdown link items ── */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-800);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    padding-left 160ms ease;
  line-height: 1.35;
}
.dropdown-link:hover {
  background: var(--off-white);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 18px;
}

/* Small icon wrapper */
.dl-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--grey-100);
  flex-shrink: 0;
  color: var(--navy-light);
  transition: background 160ms ease, color 160ms ease;
}
.dl-icon svg {
  width: 11px;
  height: 11px;
  display: block;
}
.dropdown-link:hover .dl-icon {
  background: rgba(238,185,2,.15);
  color: var(--gold-dark);
}

/* Badge pill (CHANAKYA, PDF…) */
.dd-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(238,185,2,.12);
  border: 1px solid rgba(238,185,2,.25);
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Separator line above item */
.dropdown-link--sep {
  margin-top: 6px;
  border-top: 1px solid var(--grey-100);
  padding-top: 15px;
}

/* =================================================================
   MEGA MENU dropdown.mega-menu STYLING (Desktop & Mobile)
   ================================================================= */

/* Desktop Styles (min-width: 1151px) */
@media (min-width: 1151px) {
  .dropdown.mega-menu {
    display: flex;
    gap: var(--space-4);
    min-width: 440px;
    width: auto;
    padding: 24px;
    align-items: stretch;
    /* Position aligned to the left so it expands to the right */
    left: 0;
    right: auto;
    transform: translateY(-10px);
  }
  
  /* Update tip arrow placement for left-aligned dropdown */
  .dropdown.mega-menu::before {
    left: 40px;
    right: auto;
    transform: none;
  }

  .has-dropdown:hover > .dropdown.mega-menu,
  .has-dropdown:focus-within > .dropdown.mega-menu {
    transform: translateY(0);
  }

  .mega-menu-col {
    flex: 1;
    min-width: 180px;
    border-right: 1px solid var(--grey-100);
    padding-right: var(--space-4);
  }
  
  .mega-menu-col:last-child {
    border-right: none;
    padding-right: 0;
  }

  .mega-menu-heading {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--grey-400);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-3);
    padding-left: 14px; /* Align with dropdown items */
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Row separator divider for People link under Updates column */
  .dropdown li.mega-menu-people-divider {
    border-top: 1px solid var(--grey-200);
    margin-top: 6px;
    padding-top: 4px;
  }
}

/* Mobile Accordion Styles (max-width: 1150px) */
@media (max-width: 1150px) {
  .dropdown.mega-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: 0;
    margin: 4px 14px 10px 20px;
    border-radius: var(--radius-md);
    background: rgba(6, 17, 36, 0.85);
    border: 1px solid rgba(28, 82, 150, 0.35);
    border-left: 3px solid #3b82f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dd-input:checked ~ .dropdown.mega-menu {
    max-height: 750px; /* Allow enough height for all items */
    padding: 10px 0;
  }

  .mega-menu-col {
    display: flex;
    flex-direction: column;
  }

  .mega-menu-col:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-2);
  }

  .mega-menu-heading {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #93c5fd;
    letter-spacing: 0.1em;
    padding: 6px 16px 2px;
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

/* ── Desktop CTA / overlay (hidden on mobile) ── */
.nav-desk-cta {
  margin-left: var(--space-5);
  flex-shrink: 0;
  height: 38px;
  padding: 0 1.25rem;
  border-radius: 100px; /* Fully rounded pill shape */
  font-family: var(--font-body); /* Modern Inter font */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px rgba(238, 185, 2, 0.25);
  transition: all 250ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-desk-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(238, 185, 2, 0.4);
}

.site-header.is-scrolled .nav-desk-cta {
  height: 40px; /* Slightly larger in full sticky bar */
}

.nav-overlay { display: none; }
.nav-item--mob-cta { display: none; }

/* ═══════════════════════════════════════════════
   MOBILE NAV  ≤ 1150px
═══════════════════════════════════════════════ */
@media (max-width: 1150px) {

  .nav-right-group {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    margin-left: auto !important;
  }

  /* Show hamburger, hide desktop CTA */
  .nav-toggle { display: flex; }
  .nav-desk-cta { display: none; }

  /* ── RIGHT-SIDE DRAWER ── */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    background: linear-gradient(180deg, #07152B 0%, #0A1C38 60%, #051021 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(110%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: -12px 0 50px rgba(3, 10, 24, 0.7);
    padding: 0 0 var(--space-8) 0;
    margin: 0;
    gap: 0;
    list-style: none;
    border-left: 1px solid rgba(56, 130, 246, 0.2);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }

  /* Drawer header label */
  .nav-menu::before {
    content: 'NAVIGATION';
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.65);
    padding: 24px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
  }

  /* Slide in when checkbox checked */
  .nav-drawer-input:checked ~ .nav-menu {
    transform: translateX(0);
  }

  /* Full-screen overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5,16,35,0);
    z-index: 997;
    pointer-events: none;
    transition: background 0.36s ease, backdrop-filter 0.36s ease;
    cursor: pointer;
  }
  .nav-drawer-input:checked ~ .nav-overlay {
    background: rgba(4, 12, 26, 0.75);
    pointer-events: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* ── Drawer nav items ── */
  .nav-item {
    display: block;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link,
  .dd-label {
    display: flex;
    height: auto;
    padding: 13px 22px;
    font-size: 0.925rem;
    font-weight: 500;
    color: #e2e8f0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 0;
    transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
  }
  .nav-link::after,
  .dd-label::after { display: none; } /* no underline in drawer */

  .nav-link:hover,
  .dd-label:hover {
    color: #ffffff;
    background: rgba(28, 82, 150, 0.22);
    padding-left: 26px;
  }
  .nav-link.is-active {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.2);
    border-left: 3px solid #3b82f6;
    padding-left: 19px;
  }

  .nav-caret {
    width: 11px;
    height: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 280ms ease, color 280ms ease;
  }

  /* ── Per-dropdown accordion (checkbox hack per item) ── */
  .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    background: rgba(6, 17, 36, 0.85);
    border: 1px solid rgba(28, 82, 150, 0.35);
    border-left: 3px solid #3b82f6;
    border-radius: var(--radius-md);
    box-shadow: none;
    padding: 4px 0;
    margin: 4px 14px 10px 20px;
    list-style: none;

    /* Accordion: collapsed by default */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dropdown::before { display: none; }

  /* Open accordion when per-dropdown input is checked */
  .dd-input:checked ~ .dropdown {
    max-height: 800px;
    padding: 8px 0;
  }
  /* Rotate caret */
  .dd-input:checked + .dd-label .nav-caret {
    transform: rotate(180deg);
    color: var(--gold);
  }

  /* Dropdown links in drawer */
  .dropdown-link {
    color: rgba(226, 232, 240, 0.85);
    padding: 9px 16px;
    border-left: none;
    font-size: 0.84rem;
    gap: 10px;
    transition: all 180ms ease;
  }
  .dropdown-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.16);
    border-left: none;
    padding-left: 18px;
  }
  .dl-icon {
    background: rgba(28, 82, 150, 0.35);
    color: #93c5fd;
    border: 1px solid rgba(28, 82, 150, 0.4);
    border-radius: 6px;
  }
  .dropdown-link:hover .dl-icon {
    background: #2563eb;
    color: #ffffff;
  }
  .dd-badge {
    color: var(--gold-light);
    background: rgba(238,185,2,.12);
    border-color: rgba(238,185,2,.2);
  }
  .dropdown-link--sep {
    border-top-color: rgba(255,255,255,.07);
  }

  /* Mobile CTA in drawer */
  .nav-item--mob-cta {
    display: block;
    padding: 20px 22px 28px;
    border-bottom: none;
    margin-top: 12px;
  }
  .nav-mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #1C5296 0%, #0E2849 100%);
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 196, 0, 0.6);
    box-shadow: 0 4px 16px rgba(14, 40, 73, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 250ms ease;
    text-decoration: none;
  }
  .nav-mob-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #173b6c 100%);
    border-color: var(--gold);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(28, 82, 150, 0.6);
  }

  /* Override desktop :hover behaviour on mobile */
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    max-height: 0;
    opacity: 1;
    visibility: visible;
  }
  /* But still honour checkbox */
  .has-dropdown .dd-input:checked ~ .dropdown {
    max-height: 800px !important;
  }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  .nav-menu { width: 92vw; }
  .utility-social { gap: 7px; }
  .s-icon { width: 28px; height: 28px; }
}

/* ----------------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  min-height: 380px;
  padding-block: 120px var(--space-8);
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.hero-home {
  min-height: clamp(580px, 90vh, 820px) !important;
  padding-block: 0 !important;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
}

.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020813 0%, rgba(2, 8, 19, 0.9) 35%, rgba(2, 8, 19, 0.4) 65%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 768px) {
  .hero-image-bg::after {
    background: rgba(2, 8, 19, 0.8);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll !important;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, filter 1.8s ease-in-out;
}

/* Slide 1 - Full brightness, vibrant active state */
.hero-slide:nth-child(1) {
  filter: contrast(1.05) brightness(1.05);
}
.hero-slide:nth-child(1).active {
  opacity: 1.0;
}

/* Slide 2 - Full brightness, vibrant active state */
.hero-slide:nth-child(2) {
  background-position: 20% center;
  filter: contrast(1.05) brightness(1.05);
}
.hero-slide:nth-child(2).active {
  opacity: 1.0;
}

/* Slides 3-6 - Full brightness, vibrant active state */
.hero-slide:nth-child(n+3) {
  filter: contrast(1.05) brightness(1.05);
}
.hero-slide:nth-child(n+3).active {
  opacity: 1.0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 80% at 60% 50%, black 30%, transparent 80%);
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbPulse 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4A90D9 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  animation-delay: -4s;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.18; }
  50%       { transform: scale(1.08) translate(10px, -10px); opacity: 0.25; }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(140px, 15vh, 180px) var(--space-16);
  max-width: var(--container-max);
}

.hero:not(.hero-home) .hero-inner {
  padding-block: 0 !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(238,185,2,.12);
  border: 1px solid rgba(238,185,2,.3);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.typewriter-text {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 1.2em;
}

.typewriter-text::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background-color: var(--gold-light);
  margin-left: 4px;
  animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
  from, to { background-color: transparent; }
  50% { background-color: var(--gold-light); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero-headline em,
.banner-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.15em;
  margin-right: -0.15em;
  padding-bottom: 0.12em !important;
  margin-bottom: -0.12em !important;
}

.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-partners {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.partner-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.5);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.partner-sep {
  color: rgba(255,255,255,.2);
}



@keyframes scrollFade {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ----------------------------------------------------------------
   7. STATS RIBBON
   ---------------------------------------------------------------- */
.stats-ribbon {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding-block: var(--space-6);
}

.stats-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.stat-card {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-4);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--trans-base);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,.04); }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  max-width: 120px;
}

/* ----------------------------------------------------------------
   8. FOCUS AREAS (CARD GRID)
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   8a. STARTUP LOGO TICKER SECTION (Stripe-like sliding marquee)
   ---------------------------------------------------------------- */
.startup-ticker-section {
  background-color: var(--off-white);
  padding-block: var(--space-8);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Side fades for premium Stripe-like look */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: var(--space-6);
  animation: scrollTicker 45s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  height: 64px;
  min-width: 150px;
  max-width: 200px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 37, 69, 0.04);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.ticker-item:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-md);
}

.ticker-item img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.ticker-item:hover img {
  opacity: 1;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------
   8b. FOCUS AREAS (PREMIUM CARDS GRID)
   ---------------------------------------------------------------- */
.focus-areas {
  position: relative;
  border-top: 1.5px solid rgba(46, 126, 255, 0.22);
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f0fa 100%);
  padding-block: var(--space-20);
}

.section-divider-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(46, 126, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7eff;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(46, 126, 255, 0.18), inset 0 0 6px rgba(46, 126, 255, 0.04);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider-badge:hover {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: #2e7eff;
  box-shadow: 0 0 20px rgba(46, 126, 255, 0.35);
  background: #fdfefe;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.focus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0; /* allows header and image to be full bleed */
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  position: relative;
  overflow: hidden;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-top-bar {
  background-color: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.card-top-num {
  opacity: 0.85;
}

.card-top-tag {
  font-weight: 700;
}

.card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform var(--trans-slow) var(--ease);
}

.focus-card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-grow: 1;
}

.card-title-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.card-dot {
  display: none;
}

.dot-healthtech { background-color: #2E5BFF; }
.dot-sustainability { background-color: #4E785B; }
.dot-legaltech { background-color: #6A5296; }
.dot-edtech { background-color: #A95738; }

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin: 0;
}

.card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--grey-800);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-features li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--grey-600);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.focus-card--healthtech .card-features li::before { background-color: #2E5BFF; }
.focus-card--sustain .card-features li::before { background-color: #4E785B; }
.focus-card--legal .card-features li::before { background-color: #6A5296; }
.focus-card--edtech .card-features li::before { background-color: #A95738; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-mid);
  text-decoration: none;
  transition: color var(--trans-fast), gap var(--trans-fast);
  margin-top: var(--space-4);
}

.card-link:hover {
  color: var(--gold);
  gap: var(--space-3);
}

/* ----------------------------------------------------------------
   9. MANDATES (DARK SECTION)
   ---------------------------------------------------------------- */
.mandates {
  background: #030a17;
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}

.mandates > .container {
  position: relative;
  z-index: 2;
}

.mandates::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(4, 15, 33, 0.12) 0%, rgba(2, 8, 19, 0.4) 100%), url('../images/pillars_bg.webp') no-repeat center center / cover;
  filter: brightness(2.2) saturate(1.8) contrast(1.1);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.mandates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header--light .section-title::after { background: var(--gold); }

.mandates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.mandate-item {
  padding: var(--space-6);
  border-left: 2px solid rgba(255,255,255,.07);
  transition: border-left-color var(--trans-base), transform var(--trans-base);
}
.mandate-item:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
}

.mandate-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.04em;
  transition: color var(--trans-base);
}
.mandate-item:hover .mandate-num { color: var(--gold); }

.mandate-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.mandate-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   9b. ECOSYSTEM PROGRAMS SECTION (PREMIUM LIGHT GRADIENT THEME)
   ---------------------------------------------------------------- */
.ecosystem-programs {
  background: linear-gradient(180deg, var(--white) 0%, #EBF4FC 100%);
  padding-block: var(--space-20);
  position: relative;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.ecosystem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.03);
  border: 1px solid rgba(17, 47, 84, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
  position: relative;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-light);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background var(--trans-base);
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(11, 37, 69, 0.08);
  border-color: rgba(238, 185, 2, 0.2);
}

.ecosystem-card:hover::before {
  background: var(--gold);
}

.ec-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(17, 47, 84, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans-base), color var(--trans-base);
}

.ecosystem-card:hover .ec-icon-wrap {
  background: rgba(238, 185, 2, 0.15);
  color: var(--gold-dark);
}

.ecosystem-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin: 0;
}

.ecosystem-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}

/* Tablet & Mobile responsive for Ecosystem Grid */
@media (max-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 600px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}


/* ----------------------------------------------------------------
   10. MISSION / VISION SPLIT
   ---------------------------------------------------------------- */
.mission-vision {
  background: var(--white);
  padding-block: var(--space-20);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mv-panel {
  padding: clamp(var(--space-10), 6vw, var(--space-16));
}

.mv-panel--mission {
  background: var(--off-white);
  border-right: 1px solid var(--grey-200);
}

.mv-panel--vision {
  background: var(--navy);
  color: var(--white);
}

.mv-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.mv-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.mv-eyebrow--gold { color: var(--gold); }

.mv-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
.mv-panel--vision .mv-title { color: var(--white); }

.mv-body {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.mv-panel--vision .mv-body { color: rgba(255,255,255,.85); }

.vision-highlights {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.vh-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.vh-icon {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ----------------------------------------------------------------
   11. ENTREPRENEURSHIP / PIPELINE
   ---------------------------------------------------------------- */
.entrepreneurship {
  background: var(--off-white);
  padding-block: var(--space-20);
}

.entre-inner {}

.pipeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-block: var(--space-12);
  position: relative;
}

.pipeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.pipeline-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background var(--trans-base), border-color var(--trans-base);
  flex-shrink: 0;
}
.pipeline-step:hover .pipeline-node {
  background: var(--gold);
  border-color: var(--gold);
}

.pipeline-node span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}
.pipeline-step:hover .pipeline-node span { color: var(--navy-deep); }

.pipeline-connector {
  flex: 0 0 auto;
  width: calc(12.5% - 26px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--navy-light) 0,
    var(--navy-light) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 25px;
  align-self: flex-start;
}

.pipeline-content {
  max-width: 180px;
}

.pipeline-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.pipeline-content p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
}

.entre-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   12. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-section {
  background: #030a17;
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}

.contact-section > .container {
  position: relative;
  z-index: 2;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(4, 15, 33, 0.12) 0%, rgba(2, 8, 19, 0.4) 100%), url('../images/pillars_bg.webp') no-repeat center center / cover;
  filter: brightness(2.2) saturate(1.8) contrast(1.1);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-block: var(--space-4) var(--space-5);
  letter-spacing: -0.01em;
}

.contact-body {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.ci-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ci-value {
  font-size: var(--text-sm);
  color: var(--white);
  line-height: 1.6;
}

.ci-link { text-decoration: none; transition: color var(--trans-fast); }
.ci-link:hover { color: var(--gold-light); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--grey-400); }
.form-input:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(14,47,90,.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 110px; }

/* ----------------------------------------------------------------
   13. ABOUT US SECTION
   ---------------------------------------------------------------- */
.about-section {
  background-color: var(--white);
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: flex-start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-content .section-title::after {
  margin: var(--space-4) 0 0; /* Left-aligned under heading */
}

.about-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--grey-800);
  line-height: 1.8;
  margin: 0;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
  border-left: 4px solid var(--gold);
  padding-left: var(--space-4);
  margin: var(--space-3) 0 0 0;
}

.about-logos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-logo-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform var(--trans-fast);
}

.about-logo-card:hover {
  transform: translateY(-3px);
}

.about-logo-card img {
  max-height: 85px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* Custom Overrides for Vision of the Hub Section Logos */
.hero-logo-img-1 {
  max-width: 340px !important;
  height: 74px !important;
  width: auto;
  object-fit: contain;
}

.hero-logo-img-2 {
  height: 95px !important;
  max-width: 150px !important;
  width: auto;
  object-fit: contain;
}

.about-logos-subrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-logo-card--sub {
  padding: 0;
}

.about-logo-card--sub img {
  max-height: 90px;
}


/* ================================================================

/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: radial-gradient(circle at 50% 50%, rgba(3, 10, 23, 0.2) 0%, rgba(2, 8, 19, 0.5) 100%), url('../images/footer.webp') no-repeat center center / cover;
  color: #ffffff;
  border-top: none;
}

.footer-top {
  padding-block: var(--space-16) var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 2fr 2.2fr;
  gap: var(--space-10);
}

/* Brand column */
.f-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.f-brand-logos {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.f-brand-iiitd {
  max-height: 120px; /* Increased for better visibility */
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}

.f-brand-ihub {
  max-height: 62px; /* Increased for better visibility */
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  /* Convert dark/black logo to white for dark footer bg */
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}

.f-brand-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.f-social-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.f-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
  box-shadow: var(--shadow-sm);
}

.f-social-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.f-social-btn i {
  font-size: 15px;
  line-height: 1;
}

/* Nav columns */
.f-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-6);
}

.f-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-nav-links li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #ffffff;
}

.f-nav-links a {
  color: #ffffff;
  transition: color var(--trans-fast), padding-left var(--trans-fast);
  text-decoration: none;
}

.f-nav-links a:hover {
  color: var(--gold-light);
  padding-left: 3px;
}

/* Contact column */
.f-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.f-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
}

.f-contact-icon svg {
  width: 16px;
  height: 16px;
}

.f-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-contact-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.f-contact-value {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #ffffff;
  line-height: 1.5;
}

.f-contact-value a {
  color: #ffffff;
  transition: color var(--trans-fast);
  text-decoration: none;
}

.f-contact-value a:hover {
  color: var(--gold-light);
}

/* Location column */
.f-location {
  display: flex;
  flex-direction: column;
}


.f-map-card {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.f-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.f-map-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a73e8; /* Google maps blue */
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--trans-fast), color var(--trans-fast);
  text-decoration: none;
}

.f-map-btn:hover {
  background: var(--grey-100);
  color: #1557b0;
}

.f-map-btn svg {
  width: 12px;
  height: 12px;
}

/* Footer bottom bar */
.footer-bottom {
  background: #1b1d20;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: var(--space-5);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #ffffff;
  transition: color var(--trans-fast);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* ----------------------------------------------------------------
   14. REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ================================================================


/* ================================================================
   15. RESPONSIVE BREAKPOINTS
   ================================================================ */

/* -- TABLET: ≤ 1024px -- */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.25;
  }

  .hero-sub {
    max-width: 100%;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  }

  .hero-badge {
    max-width: 100%;
    font-size: 0.72rem;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .stat-card {
    flex: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: var(--space-6) var(--space-4) !important;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mandates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr; /* 3 columns layout on tablet */
    gap: var(--space-8);
  }

  .f-location {
    grid-column: span 3;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }

  .about-content .section-title::after {
    margin: var(--space-4) 0 0;
  }

  .about-content {
    text-align: left;
  }

  .about-quote {
    border-left: none;
    border-top: 2px solid var(--gold);
    border-bottom: none !important;
    padding: var(--space-2) 0;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-panel--mission {
    border-right: none;
    border-bottom: 1px solid var(--grey-200);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .pipeline-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .pipeline-connector {
    display: none;
  }
}

/* -- TABLET NARROW: ≤ 768px -- */
@media (max-width: 768px) {

  /* Stats */
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
    background: rgba(255,255,255,.08) !important;
  }
  .stat-card {
    flex: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    padding: var(--space-5) var(--space-3) !important;
  }

  /* Cards */
  .focus-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .mandates-grid {
    grid-template-columns: 1fr;
  }

  /* Pipeline */
  .pipeline-track { grid-template-columns: 1fr; }
  .pipeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-4);
  }
  .pipeline-content { max-width: none; }

  /* Mission/Vision */
  .mv-panel { padding: var(--space-8); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .f-location {
    grid-column: span 1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  /* Contact */
  .contact-form { padding: var(--space-6); }

  /* Entrepreneurship CTA */
  .entre-cta { flex-direction: column; align-items: stretch; }
  .entre-cta .btn { text-align: center; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
}

/* -- MOBILE: ≤ 480px -- */
@media (max-width: 480px) {
  :root { --container-pad: 1.25rem; }

  .hero-inner { padding-block: var(--space-16); }
  .hero-headline { font-size: var(--text-3xl); }
  .section-header { margin-bottom: var(--space-8); }

  .stats-grid { 
    grid-template-columns: 1fr !important;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .mv-panel { padding: var(--space-6); }
  .focus-card { padding: 0; }
  .card-body { padding: var(--space-5); }
  .contact-form { padding: var(--space-5); border-radius: var(--radius-lg); }
  .footer-top { padding-block: var(--space-10); }
  .about-logos-subrow { grid-template-columns: 1fr; }
}


/* ================================================================
   16. UPDATES PAGES STYLES (Career, Tenders, Newsletter)
   ================================================================ */

.page-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding-block: 150px 80px !important;
  min-height: 480px !important;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none !important;
  box-sizing: border-box;
}

.page-banner .container {
  width: 100%;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(238, 185, 2, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  color: var(--white);
  font-weight: 700;
  line-height: 1.25 !important;
  margin-bottom: var(--space-4) !important;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--grey-400);
}

.breadcrumbs a {
  color: var(--grey-200);
  transition: color var(--trans-fast);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs-sep {
  color: var(--grey-600);
}

.breadcrumbs-active {
  color: var(--gold);
  font-weight: 600;
}

/* Common main padding */
.updates-main {
  padding-block: var(--space-16);
  background-color: var(--off-white);
  min-height: 50vh;
}

/* Filters Navigation */
.filters-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.filters-nav {
  display: flex;
  gap: var(--space-3);
}

.filter-btn {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--grey-200);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--trans-base);
}

.filter-btn:hover {
  border-color: var(--navy-light);
  background: var(--grey-100);
}

.filter-btn.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.results-count {
  font-size: var(--text-sm);
  color: var(--text-light);
  font-weight: 500;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge--open {
  background-color: rgba(46, 204, 113, 0.12);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.status-badge--closed {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Career Page Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 37, 69, 0.06);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 47, 84, 0.12);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2);
}

.job-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-light);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding-block: var(--space-3);
  margin-block: var(--space-1);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.job-meta-item i {
  color: var(--navy-light);
  width: 16px;
}

.job-actions {
  display: flex;
  gap: var(--space-3);
}

.job-actions .btn {
  flex: 1;
  font-size: var(--text-xs);
  padding: 0.6rem 1rem;
}

/* Tenders Page Grid / Table */
.tenders-card-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 37, 69, 0.06);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.tender-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tender-table th {
  background-color: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-5);
  border: none;
  border-bottom: none !important;
}

.tender-table td {
  padding: var(--space-5);
  border-bottom: 1px solid var(--grey-100);
  font-size: var(--text-sm);
  color: var(--text-body);
  vertical-align: middle;
}

.tender-table tr:last-child td {
  border-bottom: none;
}

.tender-table tr {
  transition: background-color var(--trans-fast), transform var(--trans-fast);
}

.tender-table tr:hover {
  background-color: rgba(235, 243, 252, 0.35);
}

.tender-title-cell {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.45;
  font-size: 0.95rem;
}

.tender-date-cell {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--grey-600);
}

.tender-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy-light);
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--trans-base);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  white-space: nowrap;
}

.tender-link:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(238, 185, 2, 0.3);
  transform: translateY(-1px);
}

/* Closed status modifier for row links */
tr[data-status="closed"] .tender-link {
  background: var(--grey-100);
  color: var(--grey-600) !important;
  border-color: var(--grey-200);
  box-shadow: none;
}

tr[data-status="closed"] .tender-link:hover {
  background: var(--grey-200);
  color: var(--navy-deep) !important;
  border-color: var(--grey-300);
  transform: none;
}

/* Newsletter Page */
.newsletter-showcase {
  margin-bottom: var(--space-12);
}

.featured-newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-8);
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--gold);
}

.featured-cover {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  transition: transform var(--trans-slow);
}

.featured-newsletter:hover .featured-cover {
  transform: rotate(0deg) scale(1.03);
}

.featured-cover img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  z-index: 2;
}

.featured-tag {
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.featured-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.25;
}

.featured-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
}

.featured-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 37, 69, 0.06);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.newsletter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.newsletter-card-img {
  background: var(--grey-100);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.newsletter-card-img i {
  font-size: var(--text-4xl);
  color: var(--navy-light);
}

.newsletter-card-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--navy-deep);
}

.newsletter-card-meta {
  font-size: var(--text-xs);
  color: var(--text-light);
}

.newsletter-subscribe-card {
  background: linear-gradient(135deg, #ebf3fc 0%, #d8e8f8 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid rgba(17, 47, 84, 0.08);
  max-width: 680px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}

.newsletter-subscribe-card h3 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.newsletter-subscribe-card p {
  color: var(--text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.subscribe-form-group {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin-inline: auto;
}

.subscribe-input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  color: var(--text-body);
  outline: none;
}

.subscribe-input:focus {
  border-color: var(--navy-light);
}

/* Warnings Modal (Custom modal logic) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 32, 61, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-base), visibility var(--trans-base);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border-top: 5px solid #e74c3c;
  width: 92%;
  max-width: 460px;
  padding: var(--space-8);
  text-align: center;
  transform: scale(0.9);
  transition: transform var(--trans-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.modal-overlay.is-active .modal-box {
  transform: scale(1);
}

.modal-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-deep);
}

.modal-msg {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: var(--space-3);
  width: 100%;
  margin-top: var(--space-2);
}

.modal-actions .btn {
  flex: 1;
}

/* Media Queries for Updates Layouts */
@media (max-width: 768px) {
  .featured-newsletter {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-6);
    gap: var(--space-6);
  }
  .featured-cover {
    max-width: 200px;
    margin-inline: auto;
    transform: rotate(0deg);
  }
  .featured-actions {
    justify-content: center;
  }
  .tender-table thead {
    display: none;
  }
  .tender-table tr {
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    border-bottom: 2px solid var(--grey-100);
    position: relative;
    gap: var(--space-2);
  }
  .tender-table td {
    display: block;
    padding: 0;
    border-bottom: none;
    text-align: left;
  }
  .tender-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 2px;
  }
  .tender-table td:last-child {
    margin-top: var(--space-2);
  }
  .subscribe-form-group {
    flex-direction: column;
  }
}



/* NM-ICPS Navbar Logo Styling */
.nmicps-navbar-logo {
  height: 80px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.15));
}


/* ================================================================
   17. WORKSHOPS PAGE CUSTOM STYLES
   ================================================================ */

.workshops-page-main {
  background-color: var(--off-white);
  min-height: 80vh;
}

/* Workshops page banner */
.workshops-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding-block: var(--space-16) var(--space-12);
  position: relative;
  overflow: hidden;
  border-bottom: none !important;
}

/* Tech grid overlay */
.workshops-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

/* Glowing background orbs */
.banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  animation: orbHover 10s ease-in-out infinite alternate;
}

.orb-gold {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px;
  left: 15%;
  animation-delay: 0s;
}

.orb-blue {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #4A90D9 0%, transparent 70%);
  bottom: -180px;
  right: 8%;
  animation-delay: -5s;
}

@keyframes orbHover {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(15px, -15px); }
}

.workshops-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 185, 2, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.banner-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.banner-content-left {
  flex: 1;
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.banner-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/workshop.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.85;
  filter: contrast(1.05) brightness(0.85);
  pointer-events: none;
  z-index: -1;
}

.banner-subtitle {
  font-size: clamp(var(--text-base), 2.2vw, var(--text-md)) !important;
  color: rgba(255,255,255,0.9);
  line-height: 1.7 !important;
  margin-top: var(--space-4);
  max-width: 780px !important;
  font-weight: 500 !important;
}

.breadcrumbs-active-parent {
  color: var(--grey-200);
}

.text-gold {
  color: var(--gold);
}

/* Featured section */
.featured-section {
  padding-block: var(--space-12) var(--space-6);
}

.section-label-container {
  margin-bottom: var(--space-4);
}

.featured-label-badge {
  background-color: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(238, 185, 2, 0.3);
  display: inline-block;
}

.featured-workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 37, 69, 0.06);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.featured-workshop-card:hover {
  box-shadow: var(--shadow-lg);
}

.fw-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.fw-poster-container {
  background: var(--grey-100);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
}

.fw-poster-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.fw-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.upcoming-tag {
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.fw-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
}

.fw-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-2);
}

.fw-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-body);
}

.fw-detail-icon {
  color: var(--navy-light);
  font-size: var(--text-md);
  width: 20px;
  text-align: center;
}

.btn-navy-solid {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.btn-navy-solid:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  box-shadow: 0 4px 14px rgba(13,32,61,.3);
}

.fw-features-col {
  border-left: 1px solid var(--grey-200);
  padding-left: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.fw-feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.fw-feat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-light);
  background: rgba(33,78,135,0.03);
  color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-sm);
  transition: transform var(--trans-base), background var(--trans-base), color var(--trans-base);
}

.fw-feature-item:hover .fw-feat-icon-wrap {
  transform: scale(1.06);
  background: var(--navy-light);
  color: var(--white);
}

.fw-feat-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.fw-feat-content p {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.45;
}

/* More workshops section */
.more-workshops-section {
  padding-block: var(--space-6) var(--space-12);
}

.more-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.more-title-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.more-title-line {
  flex: 1;
  height: 3px;
  background: var(--gold);
}

.workshops-list-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.workshop-row-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 37, 69, 0.06);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5) var(--space-6);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.workshop-row-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.w-row-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 1.1fr 0.7fr;
  gap: var(--space-6);
  align-items: center;
}

.w-row-poster {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
}

.w-row-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-row-title-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

.w-row-org {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.45;
}

.w-row-meta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.w-row-meta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-body);
}

.w-row-meta-item i {
  color: var(--navy-light);
  width: 14px;
  text-align: center;
  margin-top: 3px;
}

.btn-outline-blue {
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-light);
  font-size: var(--text-xs);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
}

.btn-outline-blue:hover {
  background: rgba(33, 78, 135, 0.05);
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

/* Newsletter subscription ribbon */
.newsletter-ribbon-section {
  padding-block: var(--space-6) var(--space-16);
}

.newsletter-ribbon-card {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.newsletter-ribbon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(238,185,2,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.nr-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.nr-left-block {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex: 1;
  min-width: 320px;
}

.nr-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.nr-icon-circle svg {
  width: 20px;
  height: 20px;
}

.nr-text-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.nr-text-content p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
}

.nr-right-block {
  display: flex;
  align-items: center;
}

.nr-subscribe-form {
  display: flex;
  gap: var(--space-3);
}

.nr-email-input {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem;
  font-size: var(--text-xs);
  color: var(--text-body);
  outline: none;
  width: 260px;
  transition: border-color var(--trans-fast);
}

.nr-email-input:focus {
  border-color: var(--gold);
}

.nr-submit-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--trans-base), box-shadow var(--trans-base);
}

.nr-submit-btn:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(238,185,2,0.3);
}

/* Responsive Workshops page */
@media (max-width: 1024px) {
  .fw-card-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  
  .fw-features-col {
    grid-column: span 2;
    border-left: none;
    border-top: 1px solid var(--grey-100);
    padding-left: 0;
    padding-top: var(--space-6);
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-4);
  }
  
  .fw-feature-item {
    flex: 1;
  }
  
  .w-row-inner {
    grid-template-columns: 1fr 1.6fr 1.2fr;
    gap: var(--space-4);
  }
  
  .w-row-btn-block {
    grid-column: span 3;
    margin-top: var(--space-2);
  }
  
  .w-row-btn-block .btn {
    width: auto;
    display: inline-flex;
    padding-inline: var(--space-8);
  }
}

@media (max-width: 768px) {
  .banner-inner-wrap {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }
  
  .banner-content-left {
    max-width: none;
  }
  
  .banner-graphic-right {
    flex: 0 0 auto;
  }
  
  .breadcrumbs {
    justify-content: center;
  }
  
  .fw-card-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .fw-features-col {
    grid-column: span 1;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .w-row-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
  }
  
  .w-row-poster {
    max-width: 260px;
    margin-inline: auto;
  }
  
  .w-row-meta-block {
    align-items: center;
  }
  
  .w-row-btn-block {
    grid-column: span 1;
  }
  
  .w-row-btn-block .btn {
    width: 100%;
    justify-content: center;
  }
  
  .nr-content-wrap {
    flex-direction: column;
    text-align: center;
    gap: var(--space-5);
  }
  
  .nr-left-block {
    flex-direction: column;
    min-width: 0;
    gap: var(--space-3);
  }
  
  .nr-subscribe-form {
    flex-direction: column;
    width: 100%;
  }
  
  .nr-email-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fw-features-col {
    padding-top: var(--space-4);
  }
  
  .fw-poster-container {
    max-width: 260px;
    margin-inline: auto;
  }
}



/* ================================================================
   15. MEDIA COVERAGE PAGE CUSTOM STYLES
   ================================================================ */

/* Section Typography & Spacing */
.media-section {
  padding-block: var(--space-16);
  background-color: var(--white);
}

.media-section--grey {
  background-color: var(--off-white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.media-section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.media-section-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
  display: block;
}

.media-section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 4vw, var(--text-2xl));
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.media-section-subtitle {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
}

/* Page Banner (With background image blended similar to Home Page) */
.page-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding-block: 150px 80px !important;
  min-height: 480px !important;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none !important;
  z-index: 1;
  box-sizing: border-box;
}

.page-banner::before {
  display: none; /* Removed monument vector outline */
}

.banner-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.85;
  filter: contrast(1.05) brightness(0.9);
  pointer-events: none;
  z-index: -1;
}

.banner-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020813 0%, rgba(2, 8, 19, 0.95) 35%, rgba(2, 8, 19, 0.4) 65%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.hero-tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  color: var(--gold-light);
}

.tagline-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tagline-line {
  position: relative;
  width: 70px;
  height: 1px;
  background: rgba(238, 185, 2, 0.35);
}

.tagline-line::before,
.tagline-line::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%;
  transform: translateY(-50%);
}

.tagline-line::before {
  left: 0;
}

.tagline-line::after {
  right: 0;
}

/* Floating Stats Ribbon overlap (Refined to be smaller) */
.media-stats-ribbon {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.media-stats-ribbon .stat-card {
  padding: var(--space-3) var(--space-2);
}

.media-stats-ribbon .stat-value {
  font-size: clamp(var(--text-lg), 2.2vw, var(--text-xl));
  margin-bottom: var(--space-1);
}

.media-stats-ribbon .stat-label {
  font-size: 0.7rem;
}

.stat-icon-wrap {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans-base), color var(--trans-base);
}

.stat-card:hover .stat-icon-wrap {
  transform: scale(1.1) translateY(-2px);
  color: var(--gold-light);
}

/* Stories Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* Story Card styling */
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.story-image-wrap {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
  opacity: 0.95;
}

.story-card:hover .story-image {
  transform: scale(1.04);
  opacity: 1;
}

.story-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.story-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--grey-100);
  background: var(--off-white);
  min-height: 52px;
}

.story-media-logo {
  max-height: 24px;
  max-width: 120px;
  object-fit: contain;
}

.story-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-title {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--navy-deep);
  line-height: 1.4;
  margin-bottom: var(--space-3);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--trans-fast);
}

.story-card:hover .story-title {
  color: var(--navy-light);
}

.story-desc {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-100);
  padding-top: var(--space-4);
  margin-top: auto;
}

.story-date {
  font-size: var(--text-xs);
  color: var(--grey-600);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.story-link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-mid);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--trans-fast);
}

.story-card:hover .story-link {
  color: var(--gold-dark);
}

.story-link i {
  font-size: 10px;
  transition: transform var(--trans-fast);
}

.story-link:hover i {
  transform: translateX(3px);
}

/* Multi-Row Offset Marquees (No-Card, Even Larger colorful logos with Hover/Enlarge effects) */
.media-marquee-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-block: var(--space-8);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.media-marquee-container::before,
.media-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}

.media-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.media-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.media-section--grey .media-marquee-container::before {
  background: linear-gradient(to right, var(--off-white), transparent);
}
.media-section--grey .media-marquee-container::after {
  background: linear-gradient(to left, var(--off-white), transparent);
}

.media-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.media-marquee-track {
  display: flex;
  gap: var(--space-16);
  width: max-content;
  align-items: center;
  animation: scrollLeft 35s linear infinite;
}

.media-marquee-row:hover .media-marquee-track {
  animation-play-state: paused;
}

.media-marquee-row:nth-child(1) .media-marquee-track {
  animation-delay: 0s;
}

.media-marquee-row:nth-child(2) .media-marquee-track {
  animation-delay: -12s;
}

.media-marquee-row:nth-child(3) .media-marquee-track {
  animation-delay: -24s;
}

.media-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: var(--space-2) var(--space-8);
  height: 100px;
  min-width: 260px;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
  opacity: 0.85;
  text-decoration: none;
}

.media-marquee-item:hover {
  transform: scale(1.15) translateY(-2px);
  opacity: 1;
}

.media-marquee-item svg {
  max-height: 68px;
  max-width: 100%;
  width: auto;
  filter: none;
  transition: transform var(--trans-fast);
}

/* Navy Primary Button */
.btn-navy {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}

.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(17, 47, 84, 0.22);
}

.media-action-center {
  display: flex;
  justify-content: center;
  margin-top: var(--space-10);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Universal Subpage Hero Typography (Excluding Homepage) */
.hero:not(.hero-home) .hero-headline,
.banner-title,
.tech-hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4.5vw, 2.75rem) !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  letter-spacing: -0.02em !important;
  margin-bottom: var(--space-4) !important;
  margin-top: 0 !important;
}

.hero:not(.hero-home) .hero-sub,
.banner-subtitle,
.tech-hero-desc {
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.6 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 650px !important;
}

/* =================================================================
   SUB-DROPDOWN FLIGHT/ACCORDION RULES
   ================================================================= */

/* Desktop Flyout Sub-dropdown (min-width: 1151px) */
@media (min-width: 1151px) {
  .has-sub-dropdown {
    position: relative;
  }
  .sub-dropdown {
    position: absolute;
    top: -8px;
    left: 100%;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 6px 0;
    min-width: 250px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    box-shadow:
      0 4px 6px -1px rgba(11,37,69,.08),
      0 12px 40px -4px rgba(11,37,69,.18);
    z-index: 1000;
  }
  .has-sub-dropdown:hover > .sub-dropdown,
  .has-sub-dropdown:focus-within > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  /* Sub-dropdown links styling matching main dropdown */
  .sub-dropdown .dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 14px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--grey-800);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition:
      background 160ms ease,
      color 160ms ease,
      border-color 160ms ease,
      padding-left 160ms ease;
    line-height: 1.35;
  }
  .sub-dropdown .dropdown-link:hover {
    background: var(--off-white);
    color: var(--navy);
    border-left-color: var(--gold);
    padding-left: 18px;
  }
  .sub-dropdown .dropdown-link.is-active {
    color: var(--gold);
    font-weight: 600;
  }
  
  /* Gold borders between cell rows for both dropdown & sub-dropdown */
  .dropdown li:not(:last-child),
  .sub-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--grey-100);
  }

  /* Sub-dropdown right-pointing caret by default */
  .has-sub-dropdown .nav-caret {
    transform: rotate(-90deg);
    transition: transform 160ms ease;
  }
  .has-sub-dropdown:hover .nav-caret {
    transform: rotate(0deg);
  }
}

/* Mobile Sub-accordion (max-width: 1150px) */
@media (max-width: 1150px) {
  .sub-dropdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: 0;
    margin: 4px 14px 8px 20px;
    border-radius: var(--radius-md);
    background: rgba(6, 17, 36, 0.85);
    border: 1px solid rgba(28, 82, 150, 0.35);
    border-left: 2px solid #3b82f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
  }
  .dd-input:checked ~ .sub-dropdown {
    max-height: 500px;
    padding: 6px 0;
  }
  .sub-dropdown .dropdown-link {
    padding: 9px 16px !important;
    font-size: 0.82rem !important;
  }
}

/* =================================================================
   TOP UTILITY BAR & MOBILE-ONLY MENU RULES
   ================================================================= */

/* Default hidden (mobile/tablet default) */
.header-top-bar {
  display: none;
}

@media (min-width: 1151px) {
  .header-top-bar {
    display: block;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-family: var(--font-display);
    font-weight: 600;
  }
  .top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 26px; /* Reduced from 32px to decrease height gap! */
    margin-inline: auto;
    padding-inline: var(--container-pad);
    max-width: 1440px; /* Aligns with navbar container */
  }
  .top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .top-bar-link {
    color: rgba(255, 255, 255, 0.85) !important; /* High contrast light text! */
    text-decoration: none !important;
    transition: color 150ms ease;
  }
  .top-bar-link:hover,
  .top-bar-link.is-active {
    color: var(--gold) !important;
  }
  .top-bar-sep {
    color: rgba(255, 255, 255, 0.25) !important;
    font-size: 0.65rem;
    user-select: none;
  }
}

/* Hide mobile-only categories on desktop */
@media (min-width: 1151px) {
  .mobile-only {
    display: none !important;
  }
}




/* ================================================================
   Navbar Logos Separate Hover Scale & Offset Effects
   ================================================================ */
.brand-img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.brand-img:hover {
  transform: scale(1.06) translateY(-2px) !important;
}

.nmicps-navbar-logo {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.nmicps-navbar-logo:hover {
  transform: scale(1.1) translateY(-1px) !important;
}

/* ── Fellowships Page Hero Override (Consistent with people-hero) ── */
.hero:not(.hero-home) {
  min-height: 480px !important;
  padding-block: 150px 80px !important;
}

.hero:not(.hero-home) .hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  line-height: 1.25 !important;
  margin-bottom: var(--space-4) !important;
  text-align: left !important;
}

.hero:not(.hero-home) .hero-sub {
  font-size: clamp(var(--text-base), 2.2vw, var(--text-md)) !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  max-width: 780px !important;
  text-align: left !important;
}

/* ── Global Hero Image and Overlay Style Synchronization ── */
.banner-image-bg {
  opacity: 1 !important;
  filter: saturate(1.1) brightness(0.9) !important;
  background-attachment: scroll !important;
}

.banner-image-bg::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(12, 15, 29, 0.82) 0%, rgba(12, 15, 29, 0.5) 45%, rgba(12, 15, 29, 0.1) 75%, transparent 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ── Unified Hero Aspect Ratio Lock for Desktop Zooming ── */
@media (min-width: 1200px) {
  html body .hero, 
  html body .about-hero, 
  html body .init-hero, 
  html body .ip-hero, 
  html body .publications-hero, 
  html body .init-hero--cps, 
  html body .tbi-hero, 
  html body .eir-hero, 
  html body .job-creation-hero, 
  html body .tech-dev-hero, 
  html body .people-hero, 
  html body .page-banner,
  html body .startups-hero,
  html body .editorial-hero,
  html body .about-slideshow-section {
    aspect-ratio: 16 / 6.5 !important;
    min-height: 440px !important;
    height: auto !important;
  }
}

@media (max-width: 1199px) {
  html body .hero, 
  html body .about-hero, 
  html body .init-hero, 
  html body .ip-hero, 
  html body .publications-hero, 
  html body .init-hero--cps, 
  html body .tbi-hero, 
  html body .eir-hero, 
  html body .job-creation-hero, 
  html body .tech-dev-hero, 
  html body .people-hero, 
  html body .page-banner,
  html body .startups-hero,
  html body .editorial-hero,
  html body .about-slideshow-section {
    aspect-ratio: auto !important;
    min-height: 420px !important;
    height: auto !important;
  }
}


/* Mobile Navbar Scaling Override to prevent overflow on small viewports */
@media (max-width: 768px) {
  .brand-img {
    height: 42px !important;
  }
  .navbar-inner {
    height: 56px !important;
  }
}

/* --- CMS Generated Page Template Styles --- */
.cms-gen-header {
  background-color: #0e2849 !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.cms-gen-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.cms-gen-brand-a {
  display: block;
  text-decoration: none;
}
.cms-gen-nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cms-gen-nav-link {
  color: white !important;
  text-decoration: none;
  font-weight: 500;
}
.cms-gen-main {
  padding-top: 130px;
  min-height: 70vh;
  background-color: #f8fafc;
}
.cms-gen-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.cms-gen-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  color: #0e2849;
  margin-bottom: 20px;
}
.cms-gen-divider {
  border: 0;
  height: 3px;
  background-color: #ffc400;
  width: 60px;
  margin-bottom: 30px;
  margin-left: 0;
}
.cms-gen-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.cms-gen-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}
.cms-gen-footer {
  background-color: #0c0f1d;
  color: #94a3b8;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #1e293b;
}
.cms-gen-footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}

/* --- CMS Generated Blog and Project Templates --- */
.cms-gen-blog-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.cms-gen-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c5296;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
}
.cms-gen-blog-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.cms-gen-flex-gap10-mb20 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.cms-gen-tag {
  background: rgba(28, 82, 150, 0.05);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #1c5296;
  font-weight: 500;
}
.cms-gen-blog-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  color: #0e2849;
  line-height: 1.3;
  margin-bottom: 24px;
}
.cms-gen-blog-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}
.cms-gen-mb20 {
  margin-bottom: 20px;
}

/* Bottom separator line for header/navbar */
.site-header.has-bottom-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
